home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr29 / rxbas136.zip / HISTORY.DOC < prev    next >
Text File  |  1995-02-05  |  7KB  |  241 lines

  1. American Coders Ltd
  2. P O Box 97462
  3. Raleigh, NC   27624
  4. (919) 846-2014
  5.  
  6. Register Your Copy
  7.  
  8. Read All Documentation
  9.  
  10. - HISTORY -
  11.  
  12. Version 1.36  Feb. 6, 1995
  13.  
  14. Corrected memory leak.
  15.  
  16. Corrected problem with GOTORECORD TOP|BOTTOM
  17.  
  18. Corrected Create/ModifyDBF functions and numeric field definition problems.
  19.  
  20. RexxBase_FindRecord was not resetting filestatus 
  21.  
  22. Fixed problem with updates when a logic field preceeds a memo field
  23.  
  24. Minor documentation updates.
  25.  
  26. Released BETA of Front-End GUI program.
  27.  
  28. Version 1.35  Jan. 12, 1995
  29.  
  30. Corrected SYS3175 access violation with CloseDBF function
  31.  
  32. Version 1.34  Sept. 4, 1994
  33.  
  34. Corrected reindex problem.  Program would not reindex the first index in
  35. the opendbf list.
  36.  
  37. Version 1.33  July 20, 1994
  38.  
  39. Corrected problem with indexes.  If you created or recreated indexes and then
  40. immediately added or updated fields associated with the indexes the index
  41. file was corrupted.
  42.  
  43. Version 1.32 July 12, 1994 (Bug fix)
  44.  
  45. - Character Fields were stored right justified
  46.  
  47. Version 1.31 June 23, 1994 (Bug fix)
  48.  
  49. - Memo Fields were not updated in DBT file correctly.
  50.  
  51. - Write, Update, and Pack routines would only process first memo field
  52. of a record.
  53.  
  54. - Improved Pack function.
  55.  
  56. - Recompiled with C Set++ Version 2.1 compiler.
  57.  
  58. Version 1.30 May 27, 1994
  59.  
  60. - Simplified MEMO field access.  MEMO fields are returned as simple
  61.   REXX variable names.  Previous versions had MEMO fields stored as
  62.   complex (STEM) variables, like arrays.
  63.  
  64. - Added a new function Rexxbase_SummarizeDBF to registered version.
  65.  
  66. - Added a new function Rexxbase_ChangePrimaryIndex to registered version.
  67.  
  68. - Added a new function Rexxbase_Soundex to registered version.
  69.  
  70.  
  71. Fixes in Version 1.30
  72.  
  73. - Added logic to update index pointers when RexxBase_GotoRecord function
  74.   used TOP or BOTTOM options.
  75.  
  76. - RexxBase_FindRecord is used against a database with no records created
  77.   a system error SYS3175. 
  78.  
  79. - RexxBase_SortDBF added an extra byte to header.  Data fields off by 1.
  80.  
  81. - For indexes with numeric fields, Rexxbase_WriteDBF was not passing correct 
  82.   index value. 
  83.  
  84. - RexxBase_CreateDBF used in correct data buffer offset.  If used in
  85.   conjunction with WriteDBF, data was written to dbf incorrectly.
  86.  
  87.  
  88. Version 1.23 Mar 15, 1994 (Bug fix)
  89.  
  90. - Forgot to define Rexxbase_ShutDown for LINKER in shareware.DEF file.
  91.   Caused function not found condition.
  92.  
  93. - Forgot to define Rexxbase_ShutDown
  94.                    Rexxbase_FilterDBF
  95.                    Rexxbase_ScanForRecord
  96.                    Rexxbase_JoinDBF for LINKER in registered .DEF file.
  97.   Caused function not found condition.
  98.  
  99. - When opened with an index, ReadPrev would get lost within the database
  100.   when a TOF condition is present.
  101.  
  102. - When opened with an index, if ReadDBF done first, function returned
  103.   second record in index.
  104.  
  105. - Sort routine checked Join connection too soon.  No sorts would work.
  106.  
  107. - Delete and Undelete functions were creating index records.
  108.  
  109. - When writing records to the database an invalid character was
  110.   used for the NON-DELETE indicator.  It was set to /x00 now sets to /x20.
  111.  
  112. - Corrected error in CreateDBF function. NUM FIELDS with DECIMAL POSITIONS
  113.   were rejected.
  114.  
  115. - Corrected error in field truncation. NUM fields with sizes > 9 and
  116.   no DECIMAL POSITIONS were limited to about 2 billion.  Any number greater
  117.   than that was truncated.  Still some rounding errors for fields with
  118.   sizes greater 17 and with decimal positions.  This may be a limitation of
  119.   REXX because the numbers store correctly in DBF.
  120.  
  121. Version 1.22 Mar 1, 1994 (Enhancements and fixes)
  122.  
  123. - Prevented Rexxbase_UpdateDBF from executing when the record pointer
  124. is at TOF or BOF.
  125.  
  126. - Corrected Rexxbase_CloseDBF function.  The database name passed was not
  127. being freed from the list.
  128.  
  129. - Added new function to shareware version:
  130.  
  131.   Rexxbase_ShutDown
  132.  
  133. - Added new functions to registered version:
  134.  
  135.     Rexxbase_FilterDBF
  136.     Rexxbase_ScanForRecord
  137.     Rexxbase_JoinDBF
  138.  
  139. - Added new control variable
  140.  
  141.   Rexxbase.UpdateHeaderCounter
  142.  
  143. - Added the option TOP to the Rexxbase_GotoRecord function.
  144.  
  145. - Added the option BOT or BOTTOM to Rexxbase_GotoRecord function.
  146.  
  147.  
  148. Version 1.21 Feb 14, 1994 (Bug fix)
  149.  
  150. - Updated ReadDBF function for first Index update pointer logic.
  151.  
  152. - Updated CreateIndex function to get field names in a quoted string.
  153.  
  154. - Indexing control variable too small, limitted record counts to < 128.
  155.  
  156. - Problem when passing an empty string i.e. RexxBase_FindRecord('dbf','')
  157.  
  158. - REXXBASE.RECORDNUMBER was misspelled in DLL.
  159. - Rexxbase_ReadPrev would go back two records.
  160. - Rexxbase_GotoRecord abended when run right after Rexxbase_CreateIndex
  161.  
  162.  
  163. Version 1.20 Feb 2, 1994 GA Release
  164.  
  165. - EQUALS parameter to RexxBase.FindRecord
  166.        allows for exact key matching.
  167. - Corrected problem with NDX files not being sharable.
  168.  
  169. Version 1.18 Beta Jan 20, 1994
  170.  
  171. - Added new variable Rexxbase.Version, which contains the
  172. current version number of RexxBase.
  173. - Corrected problem with records created with Clipper.
  174. - Update of index records work only when record was read with
  175. Rexxbase_FindRecord.  Corrected so that index records are updated when
  176. used with any read function.
  177. - Rexxbase_PackDBF abended if file was opened WITHOUT indexes.
  178.  
  179. Version 1.17  Beta Jan. 10, 1993
  180.  
  181. - Added record locking functions.
  182. - Corrected bug that did not allow mulitple database processing.
  183. - Corrected numeric key field length - was too small.
  184. - Added logic to prevent creating keys greater than 100 bytes.
  185. - Documentation updates.
  186.  
  187. Version 1.16  Beta Jan. 3, 1993
  188.  
  189. - Correct field alignment in DBF file. You will have to recreate
  190. your files due to this error.
  191. - Logical fields not stored correctly.
  192. - Logical fields not set correctly.
  193. - Removed zero padding from numeric fields.
  194.  
  195. Version 1.15  Beta Dec. 21, 1993
  196.  
  197. - Last update field not set correctly, mainly effected create
  198. functions.
  199. - Invalid date field should be set to spaces not zeroes.
  200. - Corrected errors in updating numeric fields
  201. - Corrected record alignment
  202.  
  203. Version 1.14  Beta Dec. 15, 1993
  204.  
  205. - Corrected errors in updating numeric fields
  206. - Corrected documentation
  207.  
  208. Version 1.13  Beta Dec 7, 1993 - NOT RELEASED
  209.  
  210. - Corrected errors in index functions - files not closed.
  211. - Corrected documentation
  212.  
  213. Version 1.12  Beta Dec. 1, 1993
  214.  
  215. - Corrected errors in CreateDBF and CreateFromDBF functions
  216. - Corrected documentation
  217.  
  218. Version 1.11  Beta Nov. 22, 1993
  219.  
  220. - CHANGED DATE FORMATTING TO BE COUNTRY CODE SPECIFIC
  221. - Corrected errors in CreateDBF and CreateFromDBF functions
  222. - Corrected documentation
  223.  
  224. Version 1.10  Beta Nov. 15, 1993
  225.  
  226. - Multi file access
  227. - Index access and other functions
  228. - Create functions
  229. - Modify structures
  230. - Improved Initialization Routine
  231. - Improved error reporting
  232. - Improved documentation
  233.  
  234. Version 1.02 Alpha Oct. 15, 1993
  235.  
  236. - Bug fix.
  237.  
  238. Version 1.01 Alpha Sep 1, 1993
  239.  
  240. - Initial release.
  241.